home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus 2000 #5
/
Amiga Plus CD - 2000 - No. 5.iso
/
Tools
/
Dev
/
fpc
/
amigaunits
/
gradientslider.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
2000-01-01
|
1KB
|
40 lines
{
This file is part of the Free Pascal run time library.
A file in Amiga system run time library.
Copyright (c) 1998-2000 by Nils Sjoholm
member of the Amiga RTL development team.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit gradientslider;
INTERFACE
uses utility;
Const
GRAD_Dummy = (TAG_USER+$05000000);
GRAD_MaxVal = (GRAD_Dummy+1); { max value of slider }
GRAD_CurVal = (GRAD_Dummy+2); { current value of slider }
GRAD_SkipVal = (GRAD_Dummy+3); { "body click" move amount }
GRAD_KnobPixels = (GRAD_Dummy+4); { size of knob in pixels }
GRAD_PenArray = (GRAD_Dummy+5); { pen colors }
IMPLEMENTATION
end.